home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / setfiletype.c < prev    next >
C/C++ Source or Header  |  1988-11-17  |  2KB  |  65 lines

  1. /* 
  2.  * setfiletype.c --
  3.  *
  4.  *    Procedure to map from a Unix-like setfiletype call to the Sprite
  5.  *    Fs_SetAttributes system call.
  6.  *
  7.  * Copyright 1988 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  */
  16.  
  17. #ifndef lint
  18. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/setfiletype.c,v 1.1 88/11/17 13:30:37 ouster Exp $ SPRITE (Berkeley)";
  19. #endif not lint
  20.  
  21. #include "sprite.h"
  22. #include "fs.h"
  23.  
  24. #include "compatInt.h"
  25. #include <errno.h>
  26.  
  27.  
  28. /*
  29.  *----------------------------------------------------------------------
  30.  *
  31.  * setfiletype --
  32.  *
  33.  *    Procedure to map from Unix setfiletype system call to Sprite 
  34.  *    Fs_SetAttributes system call.
  35.  *
  36.  * Results:
  37.  *      UNIX_SUCCESS    - the call was successful.
  38.  *      UNIX_ERROR      - the call was not successful.
  39.  *                        The actual error code stored in errno.
  40.  *
  41.  * Side effects:
  42.  *    The file type of the specified file is modified.
  43.  *
  44.  *----------------------------------------------------------------------
  45.  */
  46.  
  47. int
  48. setfiletype(path, type)
  49.     char *path;
  50.     int type;
  51. {
  52.     ReturnStatus status;    /* result returned by Sprite system calls */
  53.     Fs_Attributes attributes;    /* struct containing all file attributes,
  54.                  * only file type looked at. */
  55.  
  56.     attributes.userType = type;
  57.     status = Fs_SetAttr(path,  FS_ATTRIB_FILE, &attributes, FS_SET_FILE_TYPE);
  58.     if (status != SUCCESS) {
  59.     errno = Compat_MapCode(status);
  60.     return(UNIX_ERROR);
  61.     } else {
  62.     return(UNIX_SUCCESS);
  63.     }
  64. }
  65.